summaryrefslogtreecommitdiff
path: root/ui/routes/(login)/invite/[invite]/+page.svelte
blob: b9a4a97c8c39915f50e89a321938cac15f740e55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<script>
    import { goto } from '$app/navigation';
    import { acceptInvite } from '$lib/apiServer';

    import LogIn from '$lib/components/LogIn.svelte';

    export let data;

    let disabled;
    let username;
    let password;

    async function onSubmit() {
        disabled = true;
        const response = await acceptInvite(data.invite.id, username, password);
        if (200 <= response.status && response.status < 300) {
            username = '';
            password = '';
            goto('/');
        }
        disabled = false;
    }
</script>

{#await data}
<p>Loading invitation…</p>
{:then { invite }}
<p>Hi there! {invite.issuer} invites you to the conversation.</p>
<LogIn bind:disabled bind:username bind:password on:submit={onSubmit} />
{/await}